home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
World of Video
/
World of Video.iso
/
gfxprograms
/
egs
/
egsflick
/
makefile
< prev
next >
Wrap
Makefile
|
1995-02-13
|
195b
|
16 lines
# Makefile for (x/e)flick
CC= dcc
LDLIBS= -legs -legsblit -legsintui -legsgfx
SRCS = eflick.c read.c
OBJS = eflick.o read.o
all:: egsflick
egsflick: $(OBJS)
$(CC) -o $@ $(OBJS) $(LDLIBS)